home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / bit / Bit_FindFirstClear.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  2KB  |  57 lines

  1. /* 
  2.  * Bit_FindFirstClear.c --
  3.  *
  4.  *    Source code for the Bit_FindFirstClear library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: Bit_FindFirstClear.c,v 1.1 88/06/19 14:34:49 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include "bit.h"
  22. #include "bitInt.h"
  23.  
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Bit_FindFirstClear --
  29.  *
  30.  *    Returns the index of the first rightmost instance of a '0' bit in the
  31.  *    argument. The index of the rightmost bit is 0.
  32.  *
  33.  *    Ideally, this routine should take advantage of a hardware instruction
  34.  *    to do the operation (e.g. BFFFO on the 68020).
  35.  *
  36.  * Results:
  37.  *    if mask != 0    An index starting from 0 of the first rightmost 
  38.  *            cleared bit.
  39.  *    if mask == 0    -1.
  40.  *
  41.  * Side effects:
  42.  *    None.
  43.  *
  44.  *----------------------------------------------------------------------
  45.  */
  46.  
  47. int
  48. Bit_FindFirstClear(numBits, arrayPtr)
  49.     int      numBits;    /* # of bits in arrayPtr */
  50.     register int *arrayPtr;    /* The bit array as an array of ints. */
  51. {
  52. #define TEST(mask)    CLEAR_TEST(mask)
  53. #define QUICK_TEST     CLEAR_QUICK_TEST
  54.  
  55.     FIND_FIRST(numBits, arrayPtr)
  56. }
  57.